Ambiguity: dhcproto v0.14 has RemoteID in OptionCode but not in DhcpOption.
Choice: Encode/decode Remote-ID (code 37) as DhcpOption::Unknown with manual code matching.
Rationale: The wire format is correct; the only difference is less type safety. If dhcproto adds a dedicated variant, switching is a localized change.
None — implementation followed the spec as written.
Alternatives: (A) Per-option functions; (B) Generic option encode/decode with code registry.
Chose A: Only 2 relay options (18, 37). A registry adds complexity without benefit at this scale.
None.